home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-08-08 | 640 b | 29 lines |
- C= CC -I. -I../../CC
- FLAGS= +i -g
-
- BJ= screen.o shape.o myshape.o slist.o put_line.o main.o
-
- ll: shape.a
-
- hape.a: $(OBJ)
- rm -f shape.a
- ar qc shape.a $(OBJ)
-
- creen.o: screen.c screen.h
- $(CC) $(CFLAGS) -c screen.c
-
- hape.o: shape.c shape.h line.h rectangle.h screen.h slist.h gslist.h
- $(CC) $(CFLAGS) -c shape.c
-
- yshape.o: myshape.c myshape.h shape.h line.h rectangle.h screen.h slist.h gslist.h
- $(CC) $(CFLAGS) -c myshape.c
-
- list.o: slist.c slist.h
- $(CC) $(CFLAGS) -c slist.c
-
- ut_line.o: put_line.c screen.h
- $(CC) $(CFLAGS) -c put_line.c
-
- ain.o: main.c myshape.h shape.h line.h rectangle.h screen.h gslist.h slist.h
- $(CC) $(CFLAGS) -c main.c
-